// Loesung_von_Aufgabe_9.8_4_Mesonen_und_Baryonen

size(600, 600);
background(0);

blendMode(ADD); //additive Farbmischung

// Mesonen
fill(255, 0, 0); // Rot 
ellipse(100, 100, 150, 150);
fill(#03F9FF); // Cyan 
ellipse(200, 100, 150, 150);

fill(0, 255, 0); // Grün 
ellipse(100, 300, 150, 150);
fill(#FE03FF); // Magenta
ellipse(200, 300, 150, 150);

fill(0, 0, 255); // Blau 
ellipse(100, 500, 150, 150);
fill(#EDFF03); // Gelb 
ellipse(200, 500, 150, 150);

// Baryon
fill(255, 0, 0); // Rot 
ellipse(400, 100, 150, 150);
fill(0, 255, 0); // Grün 
ellipse(480, 100, 150, 150);
fill(0, 0, 255); // Blau 
ellipse(440, 170, 150, 150);

// Antibaryon
fill(0, 125, 125); // Cyan 
ellipse(400, 350, 150, 150);
fill(125, 125, 0); // Gelb 
ellipse(480, 350, 150, 150);
fill(125, 0, 125); // Magenta 
ellipse(440, 420, 150, 150);